home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 10 / AACD 10.iso / AACD / Utilities / AmiBroker / AFL / TradingRules / ema.afl < prev    next >
Text File  |  1999-02-07  |  121b  |  3 lines

  1. buy = cross( ema(close,7),  ema(close,14) )  AND  close > ema( close, 7 ) ;
  2. sell = cross( ema(close,14), ema(close,7) );
  3.